home *** CD-ROM | disk | FTP | other *** search
- ## skip_test
- # test the various skip error handling
- # NOTE: this script will not run, it is meant to run in the debugger to check edge cases
-
- {
- -start
- -stop
- -action -debug ffffffff
- }
-
- {
- -name skip_test
- -start
- -action -inc 0 0 0 5
- -action -print running
-
- # skip tue and wed
- -skip -week 3,4
-
- # missing interpretation specifier
- #-skip 1,2,3
-
- # no values, not an error
- #-skip -week
-
- # no values, not an error
- #-skip -year
-
- # out of range test one
- #-skip -week 1,2,3,4,5,6,7,8
-
- # out of range test two
- #-skip -week 0,1,2,3,4,5,6,7
-
- # out of range test three
- #-skip -week 1,2,8
-
- # out of range test four
- #-skip -week 1,2,X
-
- # good skip (but all days!)
- #-skip -week 1,2,3,4,5,6,7
-
- # out of range test for year
- #-skip -year 1,2,367
-
- # good test for year
- #-skip -year 1,2,366
-
- }
-